From 290dcce02e9e5c5148f07619ff8c2e4c3618b75e Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 31 Jan 2007 15:29:22 +0000 Subject: [PATCH] (ido-set-common-completion): Use `let', not `let*'. --- lisp/ido.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ido.el b/lisp/ido.el index 10418d209aa..52460574718 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -2403,8 +2403,8 @@ If cursor is not at the end of the user input, move to end of input." (defun ido-set-common-completion () ;; Find common completion of `ido-text' in `ido-matches' ;; The result is stored in `ido-common-match-string' - (let* (val) - (setq ido-common-match-string nil) + (let (val) + (setq ido-common-match-string nil) (if (and ido-matches (not ido-enable-regexp) ;; testing (stringp ido-text) -- 2.30.2